Hi |
Re: Requirements changed since a defined date AAI Services, Textron dpechacek@sc-aaicorp.com David.Pechacek@gmail.com |
Re: Requirements changed since a defined date
Something like this maybe:
Object o
History h
Date cutOffDate = "Jan 1 2009"
Date d
print "Abs #" "\t" "Change Date" "\n"
for o in current Module do {
for h in o do {
if (h.type == modifyObject) then {
if (h.date > cutOffDate) then {
d = h.date
print o."Absolute Number" "\t" d "\n"
}
}
}
}
|
Re: Requirements changed since a defined date mcnairk - thanks - got that to work :) BTW I tried to get it to give me Object Identifier but it didn't like that - and looking in DXL manual under history cannot find this mentioned. Do you (or anyone) know how to get the Object Identifier (e.g. prefix plus unique ID - like SRD1) printed instead of the Absolute Number? Thanks again |
Re: Requirements changed since a defined date twosmiles - Tue Oct 06 03:42:19 EDT 2009 |
Re: Requirements changed since a defined date Last question, please, how to get that DXL output into a spreadsheet? Thanks! |
Re: Requirements changed since a defined date twosmiles - Tue Oct 06 07:59:48 EDT 2009 |